home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1996
/
MacHack 1996.toast
/
Hacks
/
Hacks ’92
/
Run & Stumpy
/
source
/
bootblock.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-06-19
|
328 b
|
25 lines
|
[
TEXT/MPS
]
#ifndef bootblock_h
#define bootblock_h
#include <memory.h>
#ifndef inttypes_h
#include "inttypes.h"
#endif
class bootblock
{
private:
char data[1024];
void insert( Handle, uint32& position );
void zero( uint32 from);
public:
bootblock();
OSErr install( const FSSpec& volume );
};
#endif bootblock_h